public class RectangleTest
{
public static void main(String args[])
{
Rectangle shape1 = new Rectangle(32,4);
Rectangle shape2 = new Rectangle(3);
Rectangle shape3 = new Rectangle();
System.out.println(shape1.quadratize());
}
}